home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / hypercrd / hc2_x / tcprogud.sit / TC Prog Guide / card_27938.txt < prev    next >
Text File  |  1991-02-27  |  587b  |  22 lines

  1. -- card: 27938 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 4755
  5. -- name: 
  6.  
  7.  
  8. -- part contents for background part 4
  9. ----- text -----
  10. The following declares a variable of type 'union input_value', and assigns values to it.
  11.  
  12.     union input_value  response;
  13.     response.i = 7;
  14.     response.f = 100.;     /*  the value of response.i is now lost  */
  15.  
  16. Following the assignment to member 'f', the value assigned to member 'i' is no longer available, since the space allocated for it is shared by member 'f'.
  17.  
  18.  
  19.  
  20. -- part contents for background part 7
  21. ----- text -----
  22. 72